{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "3d-marquee", "type": "registry:component", "dependencies": [], "devDependencies": [], "registryDependencies": [], "files": [ { "path": "./registry/components/marquee/3d-marquee.tsx", "content": "import { Marquee } from '@/components/ui/marquee';\r\n\r\nconst logos = [\r\n {\r\n name: 'Microsoft',\r\n img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',\r\n },\r\n {\r\n name: 'Apple',\r\n img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',\r\n },\r\n {\r\n name: 'Google',\r\n img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',\r\n },\r\n {\r\n name: 'Facebook',\r\n img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',\r\n },\r\n {\r\n name: 'LinkedIn',\r\n img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',\r\n },\r\n {\r\n name: 'Twitter',\r\n img: 'https://images.unsplash.com/photo-1718954572423-2780fe600028?w=500&auto=format&fit=crop',\r\n },\r\n];\r\n\r\nconst Marquee3D = () => {\r\n return (\r\n
\r\n
\r\n \r\n {logos.map((data, idx) => (\r\n \r\n ))}\r\n \r\n
\r\n\r\n
\r\n
\r\n
\r\n );\r\n};\r\n\r\nexport default Marquee3D;\r\n", "type": "registry:component" }, { "path": "./components/ui/marquee.tsx", "content": "import { cn } from '@/lib/utils'\r\n\r\ninterface MarqueeProps {\r\n className?: string\r\n reverse?: boolean\r\n pauseOnHover?: boolean\r\n children?: React.ReactNode\r\n vertical?: boolean\r\n repeat?: number\r\n [key: string]: any\r\n}\r\n\r\nexport function Marquee({\r\n className,\r\n reverse,\r\n pauseOnHover = false,\r\n children,\r\n vertical = false,\r\n repeat = 4,\r\n ...props\r\n}: MarqueeProps) {\r\n return (\r\n \r\n {Array(repeat)\r\n .fill(0)\r\n .map((_, i) => (\r\n \r\n {children}\r\n \r\n ))}\r\n \r\n )\r\n}\r\n", "type": "registry:component" } ] }